home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / Include / vmUnixStubs.h < prev   
C/C++ Source or Header  |  1991-07-26  |  785b  |  27 lines

  1. /*
  2.  * vmUnixStubs.h --
  3.  *
  4.  *     Virtual memory Unix compatibility stub declarations.
  5.  *
  6.  * Copyright 1991 Regents of the University of California
  7.  * All rights reserved.
  8.  *
  9.  *
  10.  * $Header: /sprite/src/kernel/vm/RCS/vmUnixStubs.h,v 1.1 91/07/26 17:24:02 shirriff Exp $ SPRITE (Berkeley)
  11.  */
  12.  
  13.  
  14. #ifndef _VM_UNIX_STUBS
  15. #define _VM_UNIX_STUBS
  16.  
  17. #include <user/sys/types.h>
  18.  
  19. extern int Vm_SbrkStub _ARGS_((Address addr));
  20. extern int Vm_GetpagesizeStub _ARGS_((void));
  21. extern int Vm_MmapStub _ARGS_((caddr_t addr, int len, int prot, int share, int fd, off_t pos));
  22. extern int Vm_MunmapStub _ARGS_((caddr_t addr, int len));
  23. extern int Vm_MincoreStub _ARGS_((caddr_t addr, int len, char vec[]));
  24. extern int Vm_MprotectStub _ARGS_((caddr_t addr, int len, int prot));
  25.  
  26. #endif /* _VM_UNIX_STUBS */
  27.